home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
GameKit
/
Examples
/
PacMan
/
Text.psw
< prev
Wrap
Text File
|
1995-06-12
|
791b
|
26 lines
defineps drawReady( float xlate; float ylate; float ptsize )
/Times-BoldItalic findfont ptsize scalefont setfont
0.0 setgray
xlate 1 sub ylate 1 add moveto (Get Ready!) show
xlate 1 sub ylate 1 sub moveto (Get Ready!) show
xlate 1 add ylate 1 add moveto (Get Ready!) show
xlate 1 add ylate 1 sub moveto (Get Ready!) show
1.0 setgray
xlate ylate moveto (Get Ready!) show
endps
defineps drawScore( float xlate; float ylate; float ptsize; int score )
/Helvetica findfont ptsize scalefont setfont
0.0 setgray
xlate 1 sub ylate 1 sub moveto score (000000) cvs show
xlate 1 add ylate 1 sub moveto score (000000) cvs show
xlate 1 sub ylate 1 add moveto score (000000) cvs show
xlate 1 add ylate 1 add moveto score (000000) cvs show
1.0 setgray
xlate ylate moveto score (000000) cvs show
endps